[Docker] Docker tag


Docker tag

  • With the following command, we create a new image from the old docker tag, and assign it to a new docker tag.
      docker tag ad-website:latest ad-website:1
    
  • After we do this, we get two images referencing the same docker tag, which help us not lose the previous image's version when we create a new image tagged with the same tag(usually latest).
      docker build -t ad-website:latest .
    
#docker






你可能感興趣的文章

Python 爬蟲-爬取大量圖片-課堂筆記

Python 爬蟲-爬取大量圖片-課堂筆記

【JS 專案 - 01】 今晚來點 TodoList...

【JS 專案 - 01】 今晚來點 TodoList...

SQL Injection 的攻擊原理和防範方法

SQL Injection 的攻擊原理和防範方法






留言討論